home *** CD-ROM | disk | FTP | other *** search
- // GENERICA.H
- // (C) Anubis Software Agosta 1995
-
- // Esta libreria proporciona los tipos comunes a la gestión de tipos
- // de todas las librerías sobre genericos:
- // PILAG.H COLAG.H LISTAG.H LISTAG1.H LISTAG2.H
-
- #ifndef GENERICA.H
- #define GENERICA.H
-
- typedef struct {
- void *Siguiente;
- void *Apuntador;
- } TipoElemento;
-
- #endif